home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / minix / update~4.z / update~4 / lib_stdio_test_tputc.c < prev    next >
Encoding:
C/C++ Source or Header  |  1989-09-06  |  150 b   |  14 lines

  1. #include <stdio.h>
  2.  
  3. main()
  4.  
  5. {
  6.   int i, j;
  7.  
  8.   for (i = 0; i < 1000; i++) {
  9.     for (j = 0; j < 26; j++)
  10.       putchar('a'+j);
  11.     putchar('\n');
  12.   }
  13. }
  14.